home *** CD-ROM | disk | FTP | other *** search
/ ROM Magic / ROM Magic.iso / pc / data_11 / cover0.dir / 00035_Script_35 < prev    next >
Text File  |  1995-04-24  |  299b  |  18 lines

  1. on myNext
  2.   puppetSound "Shutter" 
  3.   if the frame = 11 then       ---Last frame
  4.     nothing
  5.   else
  6.     go to marker (1)
  7.   end if
  8. end
  9.  
  10. on myPrev
  11.   puppetSound "Shutter" 
  12.   if the frame = 1 then
  13.     go to 11        ---Last frame of prev file
  14.   else
  15.     go to marker (-1)
  16.   end if
  17. end
  18.